null-terminated multibyte string - определение. Что такое null-terminated multibyte string
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое null-terminated multibyte string - определение

CHARACTER STRING TERMINATED BY THE NULL BYTE (0X00); USED IN E.G. THE C PROGRAMMING LANGUAGE
ASCIIZ; Strcpy s; ASCIZ; Strerr; Strcpy(); CString; Null terminated strings; Strncmp(); User:Asmita yendralwar/Strcspn; Strcat s; Null terminated string; Nul terminated string; Nul-terminated string; NUL-terminated string; NUL terminated string; Zero-terminated string; Zero terminated string; 0-terminated string; O-terminated string

null-terminated multibyte string      
<programming> (NTMBS) (Defined in the ANSI C++ draft) [Different from null-terminated string?] (1995-10-02)
Null-terminated string         
In computer programming, a null-terminated string is a character string stored as an array containing the characters and terminated with a null character (a character with a value of zero, called NUL in this article). Alternative names are C string, which refers to the C programming language and ASCIIZ (although C can use encodings other than ASCII).
Null allele         
NONFUNCTIONAL ALLELE (A VARIANT OF A GENE) CAUSED BY A GENETIC MUTATION
Null mutation; Null Allele; Null alleles; Null mutant
A null allele is a nonfunctional allele (a variant of a gene) caused by a genetic mutation. Such mutations can cause a complete lack of production of the associated gene product or a product that does not function properly; in either case, the allele may be considered nonfunctional.

Википедия

Null-terminated string

In computer programming, a null-terminated string is a character string stored as an array containing the characters and terminated with a null character (a character with a value of zero, called NUL in this article). Alternative names are C string, which refers to the C programming language and ASCIIZ (although C can use encodings other than ASCII).

The length of a string is found by searching for the (first) NUL. This can be slow as it takes O(n) (linear time) with respect to the string length. It also means that a string cannot contain a NUL (there is a NUL in memory, but it is after the last character, not "in" the string).